@charset "utf-8";
/* CSS Document */
body {

	padding: 0;
	margin: 0;
    font-family: "Poppins", sans-serif;
    background:rgba(238, 63, 36);
    color:rgba(255,239,203);
	
}

h1, h2 {
	font-family: "Poppins", sans-serif;
}

.container1 {
	position: sticky;
	z-index: 2;
	top: 0;
	overflow: hidden;
	width: 100%;
	background-color:rgba(238, 63, 36);
    margin: auto;
    border-radius: 2px;
    padding:15px;
	box-sizing: border-box;
	justify-content: flex-end;
	display: flex;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	
}

.container2 {
	width: 80%;
	background-color:rgba(255,239,203);
    margin: auto;
	margin-top: 5%;
    border-radius: 2px;
    padding:80px;
	box-sizing: content-box;
}

.navi {
	list-style: none;
	display: flex;
	flex-direction: row;
	gap: 50px;
	margin-right: 5px;
}

.navi a:link {
	color:antiquewhite;
	font-weight: 400;
	font-size: 1.0em;
	font-family: "Nunito Sans", sans-serif;
    text-decoration: underline;	
}

.navi a:hover {
	color: rgba(2,56,32);
}

.main-cont {
	background-color: rgba(255,239,203);
    height: 450px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 4%;
}

.cont-left {
	position: absolute;
	top: 24%;
	right:48%;
	width: 40%;
    padding: 2px;
	color: rgba(2,56,32);
	font-weight: 600;
	font-size: 2.0em;
}

.cont-left p {
	font-size: 0.65em;
}

.cont-right {
	position: absolute;
	top: 32%;
	left:54%;
    width: 45%;
    padding: 0.2%;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    min-height: 100px;
    padding: 2%;
    gap: 25px;
}

.col {
    padding: 5px;
    margin-top: 3%;
    width: 30%;
    text-align: center;
}

.col h2 {
	font-size: 1.8em;
	text-align: center;
}

.col p {
	font-size: 1.2em;
}

.col img {
	width: 78%;
    height: auto;
}

footer {
    padding: 60px 80px 30px;
    box-sizing: border-box;

}

footer-main {
	display: grid;
	grid-template-columns: 2 1 1 1;
	column-gap: 40px;
}

.logo{
	font-size: 100px;
	font-weight: bold;
	margin-bottom: 20px;
	width: 10%;
}

footer-brand p{
	max-width: 300px;
    margin-bottom: 25px;	
	font-size: 100px;
}

.btn{
	display: inline-block;
	padding: 10px 24px;
	border: 1px #F5C36A;
	color: #f5c36a;
	text-decoration: none;
	font-size: 14px;
}

.footer-row {
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    min-height: 100px;
    padding: 1%;
    gap: 25px;
}

.footer-col ul {
	list-style: none;
	padding: 0;
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col a {
	text-decoration: none;
	color: antiquewhite;
	font-size: 14px;
}

.footer-col a:hover {
	color: rgba(2,56,32);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
	font-size: 12px;
	color: aliceblue;
	border-top: 1px solid rgba(2,56,32);
	padding-top: 20px;
}